home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_03 / 8n03025a < prev    next >
Text File  |  1990-03-18  |  299b  |  14 lines

  1. *****Listing 1*****
  2.  
  3. /* cmd_opts.h, c\include
  4. *  structure definition for command line options
  5. */
  6. struct options 
  7. {
  8.     char    s;        /* valid switch letter */
  9.     int    arg_flg;    /* flag to indicate an
  10.                    argument is required */
  11.     char    ***poptv;    /* pointer to option's
  12.                    value vector */
  13. } ;
  14.